home *** CD-ROM | disk | FTP | other *** search
/ Virtual Top Model / Virtual Top Model - Disc 1.iso / modulos / intro.dxr / 00053.ls < prev    next >
Encoding:
Text File  |  1997-04-02  |  941 b   |  37 lines

  1. on exitFrame
  2.   global nFin, bVideoNormal, c3, c4
  3.   if the movieTime of sprite 5 < nFin then
  4.     if bVideoNormal then
  5.       if (the mouseV >= 221) and (the mouseH >= 320) and (the mouseV <= 269) and (the mouseH <= 406) then
  6.         cursor([c3, c4])
  7.       else
  8.         cursor(-1)
  9.       end if
  10.     else
  11.       if (the mouseV >= 210) and (the mouseH >= 350) and (the mouseV <= 240) and (the mouseH <= 405) then
  12.         cursor([c3, c4])
  13.       else
  14.         cursor(-1)
  15.       end if
  16.     end if
  17.     go(the frame)
  18.   else
  19.     go("bocaIni" & bVideoNormal)
  20.   end if
  21. end
  22.  
  23. on mouseDown
  24.   global bVideoNormal
  25.   if bVideoNormal then
  26.     if (the mouseV >= 221) and (the mouseH >= 320) and (the mouseV <= 269) and (the mouseH <= 406) then
  27.       cursor(-1)
  28.       go("finPres1")
  29.     end if
  30.   else
  31.     if (the mouseV >= 210) and (the mouseH >= 350) and (the mouseV <= 240) and (the mouseH <= 405) then
  32.       cursor(-1)
  33.       go("finPres0")
  34.     end if
  35.   end if
  36. end
  37.